.services-page-section {
    padding: 100px 20px 80px 20px;
    background-color: #f8fafc; /* Sfondo leggermente grigio per far risaltare i box bianchi */
    font-family: Arial, sans-serif;
}

.services-page-container {
    max-width: 1000px;
    margin: 0 auto;
}

.services-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-subtitle {
    color: #36AD49;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}

.services-page-header h2 {
    font-size: 36px;
    color: #1e293b;
    margin-top: 5px;
    margin-bottom: 10px;
}

.services-page-header p {
    color: #64748b;
    font-size: 16px;
}

.services-accent-line {
    width: 50px;
    height: 4px;
    background-color: #36AD49;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

/* Struttura a schede estese */
.services-long-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.service-long-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    gap: 35px;
    align-items: flex-start;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    border: 1px solid #e2e8f0;
}

.service-long-badge {
    font-size: 40px;
    background-color: #f1f5f9;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.service-long-info {
    flex-grow: 1;
}

.service-long-info h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 12px;
}

.service-long-info p {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Liste caratteristiche interne */
.service-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #334155;
    font-size: 15px;
}

.service-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #36AD49;
    font-weight: bold;
}

/* Pulsante d'azione */
.service-action-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: #36AD49;
    border: 2px solid #36AD49;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.service-action-btn:hover {
    background-color: #36AD49;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .service-long-card {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }
    .service-long-badge {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}